home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / conch.arc / README < prev   
Text File  |  1980-01-01  |  4KB  |  91 lines

  1. This diskette contains the shareware program Conch, an enhanced command
  2. shell for IBM PCs and compatibles running MS-DOS. The file DOCS.TEX
  3. contains the text of the Conch user's manual. It is composed in the 
  4. form of source for Donald Knuth's TeX typesetting program. If you do
  5. not have access to the TeX program, you can:
  6.  
  7.     - get a photocopy of the manual from the manual belonging to the
  8.       person who gave you the copy of this program.
  9.  
  10.     - print out the DOCS.PLN file on any 80 column ASCII printer. It
  11.       is a copy of the manual with the formatting commands removed.
  12.       The output won't be as pretty, but that's life. To print out
  13.       the manual, use the command "copy docs.pln prn".
  14.  
  15.     - Buy a copy of the program from the author for $35. It will 
  16.       come with a hard copy of the manual.
  17.  
  18. The program is provided with a range of buffer and stack sizes ranging
  19. from small (CONCH.EXE) to extremely large (CONCH4.EXE).  The programs will
  20. use between 42K (CONCH.EXE) and 92K (CONCH4.EXE) of the memory available
  21. in your machine.  This will reduce the amount available for running other
  22. programs in.
  23.  
  24. The following files should appear on your diskette, showing the same
  25. sizes and dates.
  26.  
  27. READ_ME                                      This file
  28. CONCH    EXE    31744   9-25-85   9:27p      The program in different sizes
  29. CONCH1   EXE    31744   9-25-85   9:29p             |
  30. CONCH2   EXE    31744   9-25-85   9:30p             |
  31. CONCH3   EXE    31744   9-25-85   9:31p             |
  32. CONCH4   EXE    31744   9-25-85   9:33p             |
  33. DOCS     TEX    45243   9-17-85   9:08p      Documentation (TeX Input)
  34. CONCHRC           623   6-22-85  11:17a      A sample initialization file
  35. DOCS     PLN    35485   9-24-85   9:34p      Documentation (Plain ASCII)
  36.  
  37. If you have purchased the source code to the program, the diskette will
  38. also contain these files in the subdirectory SOURCE. Please remember 
  39. that the source code is not shareware, and that you have agreed not to
  40. distribute the source code to any third parties.
  41.  
  42. BUF_SIZE H         25   9-11-85   9:45p
  43. RSH      H       2000   9-25-85   9:23p
  44. RSH      C      21928   9-25-85   9:10p
  45. RSH_BUFF C      13108   9-09-85  10:44p
  46. RSH_ETC  C      11541   9-09-85  10:41p
  47. REDIR    C       9140   6-23-85   9:03p
  48. PIPENAME C       1156   8-22-85   9:34p
  49. JOHN     C       7784   8-22-85   8:53p
  50. ANS_IO   C       3831   6-23-85   8:40p
  51. LINEDIT  C       4691   5-26-85   5:45p
  52. GETKEY   C       1028   4-02-85   2:06a
  53. GETKEY   H        277   6-13-85   9:15p
  54. MAKE     BAT      202   9-11-85  10:26p
  55.  
  56. These are the source code files which require the DeSmet C compiler
  57. to convert into executable code. The batch file MAKE.BAT contains
  58. the commands necessary to perform the compilation and linking. Note
  59. that the files pcio.o and exec.o are required from the DeSmet package.
  60.  
  61.  
  62. Notes on the Minor Upgrade from V1.00 to V1.01
  63. ----------------------------------------------
  64.  
  65. The exit command will now work, even when included as part of a compound
  66. command group.
  67.  
  68. Previously, if a token was composed of only a virtual device, any 
  69. trailing backslash was removed so that things like "cd test:" would
  70. be evaluated properly. It now removes trailing slashes as well to be
  71. compatible with either switchar setting.
  72.  
  73. Previously, if a command expanded to something starting with "command /c"
  74. the shell would move up a line before execution. This was done because
  75. the command.com supplied with DOS versions before 3.1 would throw in
  76. an extra newline when invoked this way. This made it prettier, but now
  77. the command.com in DOS 3.1 does not have the extra newline, so the
  78. first line of output will overwrite the command line --- ugly. This
  79. has been fixed by a test for DOS version number. In any case, if you
  80. want to stop conch from moving up a line, set your aliases to produce
  81. a specific reference to command.com, rather than letting conch search
  82. the path. i.e. use
  83.         alias dir c:\command /c dir
  84. rather than
  85.         alias dir command /c dir
  86.  
  87.  than letting conch search
  88. the path. i.e. use
  89.         alias dir c:\command /c dir
  90. rather than
  91.         alias dir command /c di